* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    
}
html{
    scroll-behavior: smooth;
    scroll-snap-type: y proximity; /* Optional for snap points */
}

body {
    overflow-x: hidden;
    width: 100%;
    background-color: #f8f9fa;
    padding-top: 80px; /* To account for fixed navbar */
    

}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    .navbar {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo and Dropdown Styles */
.dropdown-with-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: rotate(15deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.dropdown-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none; /* Hidden by default on mobile */
}

.dropdown-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e67e22;
    transition: width 0.3s ease;
}

.dropdown-btn:hover::after {
    width: 100%;
}

/* Brand Name (shown on desktop) */
.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e67e22;
    transition: width 0.3s ease;
}

.brand-name:hover::after {
    width: 100%;
}

/* Contact Us Button Styles */
.contact-us a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    background: linear-gradient(45deg, #e67e22, #d35400);
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-us a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.contact-us a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.contact-us a:hover::before {
    left: 100%;
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 2.5rem;
}

.mobile-menu .contact-link {
    background: linear-gradient(45deg, #e67e22, #d35400);
    margin: 1rem 2rem;
    border-radius: 30px;
    text-align: center;
    border: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .brand-name {
        font-size: 1.3rem;
    }
    
    .contact-us a {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        transform: translateY(0) !important;
        padding: 1rem;
    }
    
    .brand-name {
        display: none;
    }
    
    .dropdown-btn {
        display: block;
        font-size: 1.2rem;
    }
    
    .contact-us {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar-logo {
        width: 40px;
        height: 40px;
    }
}
/* Language Toggle Styles */
.language-toggle-container {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: center;
}

.language-toggle {
    display: flex;
    background-color: #e9ecef;
    border-radius: 30px;
    padding: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.lang-btn {
    border: none;
    padding: 8px 20px;
    font-family: 'Tajawal', sans-serif;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    color: #495057;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background-color: #e67e22;
    color: white;
    font-weight: 500;
}

.lang-btn:not(.active):hover {
    background-color: #dee2e6;
}
/* Add these new styles to your existing CSS */

.company-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.company-link:hover {
    color: #e67e22;
}

.company-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-link:hover .company-logo {
    transform: scale(1.1);
}

/* For Arabic version */
[lang="ar"] .company-link {
    flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-link {
        justify-content: center;
    }
    
    [lang="ar"] .company-link {
        flex-direction: row;
        justify-content: center;
    }
}
        /* Motion Slider Styles */
.slider-container {
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.slider-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 15px;
}

.slider-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #d35400);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    height: clamp(350px, 60vh, 500px);
}

.slider-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.5s ease;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(1rem, 3vw, 3rem);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    box-sizing: border-box;
}

.slider-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slider-slide.active .slide-image {
    filter: brightness(0.5);
}

.slide-title {
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.slide-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1 1 150px;
}

.feature-icon {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #e67e22;
    flex-shrink: 0;
}

.feature-text {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    line-height: 1.3;
}

/* Raised Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: clamp(35px, 8vw, 50px);
    height: clamp(35px, 8vw, 50px);
    border-radius: 50%;
    font-size: clamp(1rem, 3vw, 1.5rem);
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px);
}

.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50px) scale(1.1);
}

/* Arabic-specific styles */
[lang="ar"] .slide-content {
    text-align: right;
    direction: rtl;
}

[lang="ar"] .feature-item {
    flex-direction: row-reverse;
}

[lang="ar"] .slider-btn i.fa-chevron-left {
    transform: rotate(180deg);
}

[lang="ar"] .slider-btn i.fa-chevron-right {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-container {
        margin: 1.5rem 0;
    }
    
    .slide-features {
        gap: 0.8rem;
    }
    
    .feature-item {
        flex: 1 1 120px;
    }
    
    /* Adjust arrow position for mobile */
    .slider-nav {
        top: 25%;
    }
}

@media (max-width: 480px) {
    .slider-title {
        margin-bottom: 0.5rem;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-features {
        margin-bottom: 1rem;
    }
    
    .feature-item {
        flex: 1 1 100%;
    }
    
    /* Further adjust arrow position for small screens */
    .slider-nav {
        top: 35%;
    }
    
    .slider-btn {
        transform: translateY(-30px);
    }
    
    .slider-btn:hover {
        transform: translateY(-30px) scale(1.1);
    }
}
/* Introduction Section Styles */
.intro-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-container {
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.intro-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #e67e22, #d35400);
}

.intro-title {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #e67e22, #d35400);
}

[lang="ar"] .intro-title::after {
    right: 0;
    left: auto;
}

.intro-text {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

/* Arabic specific styles */
[lang="ar"] .intro-container {
    text-align: right;
    direction: rtl;
}

[lang="ar"] .intro-title {
    font-family: 'Tahoma', 'Arial', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-section {
        margin: 3rem auto;
        padding: 0 1.5rem;
    }
    
    .intro-container {
        padding: 2rem;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-section {
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .intro-container {
        padding: 1.5rem;
    }
    
    .intro-title {
        font-size: 1.5rem;
    }
}
/* Background for Introduction Section */
    .intro-section {
        position: relative;
        max-width: 100%;
        margin: 4rem auto;
        padding: 3rem 2rem;
        border-radius: 10px;
        overflow: hidden;
    }

    .intro-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('blocks.png');
        background-size: cover;
        background-position: center;
        filter: brightness(0.6) blur(0px);
        z-index: -1;
    }

    .intro-container {
        background: rgba(0, 0, 0, 0.5);
        position: relative;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }

    /* Modern Footer Styles */
footer {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    color: #fff;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #d35400);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* ===== UNCHANGED CSS (keep as is) ===== */
.footer-column {
    position: relative;
    padding: 15px 0px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e67e22;
    border-radius: 3px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li:hover {
    transform: translateX(5px);
}

.footer-column ul li a:hover {
    color: #e67e22;
}

.footer-column ul li a:hover::before {
    width: 30px;
}

/* ===== MODIFIED/NEW CSS ===== */
.footer-column ul li {
    display: flex;
    align-items: flex-start; /* Changed: Better icon alignment */
    gap: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.footer-column ul li i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-top: 3px; /* New: Fixes icon vertical alignment */
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

/* New: Contact numbers section */
.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
    width: 100%;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-person .name {
    color: #ecf0f1;
    font-weight: 500;
}

.contact-person .number {
    color: #e67e22;
    direction: ltr; /* Forces LTR for numbers */
    font-family: monospace; /* Optional: Better number readability */
}

/* New: Email/map text wrapper */
.footer-column ul li > span:not(.name):not(.number) {
    flex: 1;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #e67e22;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

/* Arabic Support */
[lang="ar"] .footer-column {
    text-align: right;
    direction: rtl;
}

[lang="ar"] .footer-column h3::after {
    left: auto;
    right: 0;
}

[lang="ar"] .footer-column ul li:hover {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul li {
        justify-content: center;
    }

    [lang="ar"] .footer-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 3rem 1.5rem;
    }

    .footer-column ul li a {
        justify-content: center;
    }
}
/* Add these new styles to your existing CSS */

.company-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.company-link:hover {
    color: #e67e22;
}

.company-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.company-link:hover .company-logo {
    transform: scale(1.1);
}

/* For Arabic version */
[lang="ar"] .company-link {
    flex-direction: row-reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-link {
        justify-content: center;
    }
    
    [lang="ar"] .company-link {
        flex-direction: row;
        justify-content: center;
    }
}
    /* Block Showcase Styles */
    .block-showcase {
        padding: 5rem 0;
        background-color: #f9f9f9;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        position: relative;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #e67e22, #d35400);
    }
    
    .section-subtitle {
        text-align: center;
        color: #7f8c8d;
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .blocks-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .block-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .block-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .block-image-container {
        position: relative;
        height: 280px;
        overflow: hidden;
    }
    
    .block-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .block-card:hover .block-image {
        transform: scale(1.05);
    }
    
    .size-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(0,0,0,0.7);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .block-details {
        padding: 1.5rem;
    }
    
    .block-details h3 {
        font-size: 1.4rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .specs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .spec-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: #555;
    }
    
    .spec-item i {
        color: #e67e22;
    }
    
    @media (max-width: 768px) {
        .blocks-grid {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }
        /* Arabic Title Alignment */
    [lang="ar"] .section-title,
    [lang="ar"] .section-subtitle {
        text-align: right;
        font-family: 'Tahoma', 'Arial', sans-serif; /* Optional: Better Arabic font */
    }
    /* Map Section Styles */
    .map-section {
        padding: 5rem 0;
        background-color: #f8f9fa;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        text-align: center;
        color: #7f8c8d;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .map-responsive-container {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%; /* 16:9 Aspect Ratio */
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        background: white;
    }
    
    .map-responsive-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .map-overlay-card {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(255,255,255,0.95);
        padding: 1.5rem;
        border-radius: 8px;
        max-width: 300px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        z-index: 10;
    }
    
    .location-details h3 {
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .location-details p {
        margin-bottom: 0.8rem;
        color: #555;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }
    
    .location-details i {
        color: #e67e22;
        width: 20px;
        text-align: center;
    }
    
    .directions-btn {
        display: inline-block;
        background: linear-gradient(45deg, #e67e22, #d35400);
        color: white;
        padding: 0.6rem 1.2rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .directions-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    }
    
    .directions-btn i {
        color: white;
        margin-right: 0.5rem;
    }
    
    @media (max-width: 768px) {
        .map-overlay-card {
            position: relative;
            bottom: auto;
            left: auto;
            max-width: 100%;
            border-radius: 0;
            box-shadow: none;
            background: #f9f9f9;
            margin-top: -5px; /* Removes gap between map and card */
        }
        
        .map-responsive-container {
            padding-top: 75%; /* Taller aspect ratio for mobile */
        }
        
        .section-title {
            font-size: 1.8rem;
        }
    }
        /* Arabic RTL Support for Map Section */
    [lang="ar"] .map-section .section-title::after {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }

    [lang="ar"] .location-details {
        direction: rtl;
        text-align: right;
    }

    [lang="ar"] .location-details i {
        margin-left: 8px;
        margin-right: 0;
    }

    [lang="ar"] .directions-btn {
        font-family: 'Tahoma', 'Arial', sans-serif;
    }
    /* WhatsApp Floating Button Styles */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    margin-top: -1px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 60px;
        right: 20px;
        font-size: 25px;
    }
}
.py-3{
    margin: 60px;
    
}

.ml-form-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
/* Override MailerLite's default form styles */
.ml-form-embedContainer .ml-form-embedWrapper,
.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
    max-width: 100% !important;
    border-radius: 0% !important;

}





/* Responsive adjustments */
@media (max-width: 768px) {
    .ml-form-embedContainer .form-row {
        margin: 0;
    }
    
    .ml-form-embedContainer .ml-form-fieldRow {
        flex: 0 0 100%;
        padding: 0;
    }
    .product-img {
   
    object-fit: fill
    }
}